Given a string s, find the length of the longest substring 
without repeating characters.
class Solution(object):
    def lengthOfLongestSubstring(self, s):
        "
        :type s: str
        :rtype: int
        "